c# append to file

29

c# append to file -

File.AppendAllText(@"c:\path\file.txt", "text content" + Environment.NewLine);

streamwriter append text -

 using (FileStream fs = new FileStream(fileName,FileMode.Append, FileAccess.Write))
 using (StreamWriter sw = new StreamWriter(fs))
 {
    sw.WriteLine(something);
 }

c# append text to file -

File.AppendAllText(@"c:\path\file.txt", "text content" + Environment.NewLine);

Comments

Submit
0 Comments